[id].vue 376 B

12345678910111213
  1. <template>
  2. <SearchNews v-if="type == 1"></SearchNews>
  3. <SearchGoods v-if="type == 2"></SearchGoods>
  4. <SearchCompany v-if="type == 6"></SearchCompany>
  5. <SearchProject v-if="type == 7"></SearchProject>
  6. </template>
  7. <script setup>
  8. import { useRoute } from 'vue-router'
  9. const route = useRoute();
  10. let type = route.query.type
  11. let keyword = route.query.keyword
  12. </script>